home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / c-lang / strmc105.lha / StormC-Demo / INCLUDE / clib / nonvolatile_protos.h < prev    next >
C/C++ Source or Header  |  1996-01-02  |  1KB  |  50 lines

  1. #ifndef  CLIB_NONVOLATILE_PROTOS_H
  2. #define  CLIB_NONVOLATILE_PROTOS_H
  3.  
  4. /*
  5. **    $VER: nonvolatile_protos.h 40.5 (30.7.93)
  6. **    Includes Release 40.15
  7. **
  8. **    C prototypes. For use with 32 bit integers only.
  9. **
  10. **    (C) Copyright 1990-1993 Commodore-Amiga, Inc.
  11. **        All Rights Reserved
  12. */
  13.  
  14. #ifndef  EXEC_TYPES_H
  15. #include <exec/types.h>
  16. #endif
  17. #ifndef  EXEC_LISTS_H
  18. #include <exec/lists.h>
  19. #endif
  20. #ifndef  LIBRARIES_NONVOLATILE_H
  21. #include <libraries/nonvolatile.h>
  22. #endif
  23.  
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27.  
  28. /*--- functions in V40 or higher (Release 3.1) ---*/
  29. APTR GetCopyNV( STRPTR appName, STRPTR itemName, long killRequesters );
  30. void FreeNVData( APTR data );
  31. UWORD StoreNV( STRPTR appName, STRPTR itemName, APTR data,
  32.     unsigned long length, long killRequesters );
  33. BOOL DeleteNV( STRPTR appName, STRPTR itemName, long killRequesters );
  34. struct NVInfo *GetNVInfo( long killRequesters );
  35. struct MinList *GetNVList( STRPTR appName, long killRequesters );
  36. BOOL SetNVProtection( STRPTR appName, STRPTR itemName, long mask,
  37.     long killRequesters );
  38.  
  39. #ifdef __cplusplus
  40. }
  41. #endif
  42.  
  43. #ifdef STORMPRAGMAS
  44. #ifndef _INCLUDE_PRAGMA_NONVOLATILE_LIB_H
  45. #include <pragma/nonvolatile_lib.h>
  46. #endif
  47. #endif
  48.  
  49. #endif     /* CLIB_NONVOLATILE_PROTOS_H */
  50.